A suitable example.
How does a selection sort work for an array?
1894
11-Sep-2019
Updated on 18-Apr-2023
Aryan Kumar
06-Apr-2023Selection sort is a simple algorithm that works by repeatedly finding the minimum element from the unsorted part of an array and swapping it with the first element.
Here is the code for selection sort in C#:-
Output:-
Sorted array: 11 12 22 25 64
Anonymous User
11-Sep-2019This selection sort is a fairly intuitive sorting algorithm, though not necessarily efficient. Into this process, the smallest element is first located and switched with the element at subscript zero, thereby placing the smallest element in the first position.
The smallest element remaining in the subarray is then located next to subscripts 1 through n-1 and switched with the element at subscript 1, thereby placing the second smallest element in the second position. The steps are repeated in the same manner till the last element.
OR
The Selection sort is conceptually the simplest sorting algorithm. These algorithms will find first the smallest element in the array and swap it with the element in the first position, then it will find the second smallest element and exchange it with second position's element in that series, and It will keep doing this until the entire table is sorted. This is called selection sort because it repeatedly selects the next-smallest element and swaps it into the right place.
Algorithm for selection sort selectionSort(array, size)
repeat (size - 1) times
set the first unsorted element as the minimum
for each of the unsorted elements
if element < currentMinimum
set element as new minimum
swap minimum with first unsorted position
end selectionSort
Example (1).